projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
303b5b3
)
(init_sys_modes): Enable VSTART and VSTOP if flow_control.
author
Richard M. Stallman
<rms@gnu.org>
Fri, 13 Jun 1997 00:49:50 +0000
(
00:49
+0000)
committer
Richard M. Stallman
<rms@gnu.org>
Fri, 13 Jun 1997 00:49:50 +0000
(
00:49
+0000)
src/sysdep.c
patch
|
blob
|
history
diff --git
a/src/sysdep.c
b/src/sysdep.c
index b6d87714820b1b1c3011191a3150b2a43664e8d4..5197317b5f9f77fecdf29278b6dabb97c4b4d991 100644
(file)
--- a/
src/sysdep.c
+++ b/
src/sysdep.c
@@
-1375,6
+1375,15
@@
init_sys_modes ()
tty.main.c_cc[VSUSP] = 255;
tty.main.c_cc[VDSUSP] = 255;
#endif /* IBMR2AIX */
+ if (flow_control)
+ {
+#ifdef VSTART
+ tty.main.c_cc[VSTART] = '\021';
+#endif /* VSTART */
+#ifdef VSTOP
+ tty.main.c_cc[VSTOP] = '\023';
+#endif /* VSTOP */
+ }
/* Also, PTY overloads NUL and BREAK.
don't ignore break, but don't signal either, so it looks like NUL.
This really serves a purpose only if running in an XTERM window